home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / pl4019ax.zip / TIMELOCA.PL < prev    next >
Perl Script  |  1991-11-13  |  3KB  |  76 lines

  1. ;# timelocal.pl
  2. ;#
  3. ;# Usage:
  4. ;#    $time = timelocal($sec,$min,$hours,$mday,$mon,$year,$junk,$junk,$isdst);
  5. ;#    $time = timegm($sec,$min,$hours,$mday,$mon,$year);
  6.  
  7. ;# These routines are quite efficient and yet are always guaranteed to agree
  8. ;# with localtime() and gmtime().  We manage this by caching the start times
  9. ;# of any months we've seen before.  If we know the start time of the month,
  10. ;# we can always calculate any time within the month.  The start times
  11. ;# themselves are guessed by successive approximation starting at the
  12. ;# current time, since most dates seen in practice are close to the
  13. ;# current date.  Unlike algorithms that do a binary search (calling gmtime
  14. ;# once for each bit of the time value, resulting in 32 calls), this algorithm
  15. ;# calls it at most 6 times, and usually only once or twice.  If you hit
  16. ;# the month cache, of course, it doesn't call it at all.
  17.  
  18. ;# timelocal is implemented using the same cache.  We just assume that we're
  19. ;# translating a GMT time, and then fudge it when we're done for the timezone
  20. ;# and daylight savings arguments.  The timezone is determined by examining
  21. ;# the result of localtime(0) when the package is initialized.  The daylight
  22. ;# savings offset is currently assumed to be one hour.
  23.  
  24. CONFIG: {
  25.     package timelocal;
  26.     
  27.     @epoch = localtime(0);
  28.     $tzmin = $epoch[2] * 60 + $epoch[1];    # minutes east of GMT
  29.     if ($tzmin > 0) {
  30.     $tzmin = 24 * 60 - $tzmin;        # minutes west of GMT
  31.     $tzmin -= 24 * 60 if $epoch[5] == 70;    # account for the date line
  32.     }
  33.  
  34.     $SEC = 1;
  35.     $MIN = 60 * $SEC;
  36.     $HR = 60 * $MIN;
  37.     $DAYS = 24 * $HR;
  38. }
  39.  
  40. sub timegm {
  41.     package timelocal;
  42.  
  43.     $ym = pack(C2, @_[5,4]);
  44.     $cheat = $cheat{$ym} || &cheat;
  45.     $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS;
  46. }
  47.  
  48. sub timelocal {
  49.     package timelocal;
  50.  
  51.     $ym = pack(C2, @_[5,4]);
  52.     $cheat = $cheat{$ym} || &cheat;
  53.     $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS
  54.     + $tzmin * $MIN - 60 * 60 * ($_[8] != 0);
  55. }
  56.  
  57. package timelocal;
  58.  
  59. sub cheat {
  60.     $year = $_[5];
  61.     $month = $_[4];
  62.     $guess = $^T;
  63.     @g = gmtime($guess);
  64.     while ($diff = $year - $g[5]) {
  65.     $guess += $diff * (364 * $DAYS);
  66.     @g = gmtime($guess);
  67.     }
  68.     while ($diff = $month - $g[4]) {
  69.     $guess += $diff * (28 * $DAYS);
  70.     @g = gmtime($guess);
  71.     }
  72.     $g[3]--;
  73.     $guess -= $g[0] * $SEC + $g[1] * $MIN + $g[2] * $HR + $g[3] * $DAYS;
  74.     $cheat{$ym} = $guess;
  75. }
  76.